Add support for RSASSA-PSS (PS256) algorithm#616
Merged
daneshk merged 10 commits intoballerina-platform:masterfrom Dec 9, 2025
Merged
Add support for RSASSA-PSS (PS256) algorithm#616daneshk merged 10 commits intoballerina-platform:masterfrom
daneshk merged 10 commits intoballerina-platform:masterfrom
Conversation
* Refactor static code rule implementation * Update spec with scan rules * Update changelog * Address sonar cloud reported issues * Add enable code coverage report for compiler plugin * Bump to the next minor version * [Automated] Update the native jar versions * Improve code coverage * Update AES encryption example from CCM to CBC * Fix reference to SHA256 in password hashing function
Co-authored-by: Thisaru Guruge <thisaru@wso2.com>
Co-authored-by: DimuthuMadushan <35717653+DimuthuMadushan@users.noreply.github.com>
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #616 +/- ##
============================================
- Coverage 82.32% 82.14% -0.19%
- Complexity 241 371 +130
============================================
Files 29 41 +12
Lines 1375 1725 +350
Branches 191 268 +77
============================================
+ Hits 1132 1417 +285
- Misses 196 215 +19
- Partials 47 93 +46 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
@DimuthuMadushan @daneshk I have created a new PR with only the commits that are related to this feature, which were already reviewed in the previous PR |
5 tasks
daneshk
approved these changes
Dec 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Purpose
Fixes #8292
This PR implements RSASSA-PSS (PS256) signature support for the Ballerina crypto library, addressing the current limitation where only classic RSA signatures (PKCS#1 v1.5) are available.
Examples
Sign data
Verify signature
Checklist